home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megaware 1
/
Megaware Volume 1.iso
/
programg
/
c-tutor
/
person.hpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-07-21
|
279 b
|
14 lines
// Chapter 11 - Program 1
#ifndef PERSONHPP
#define PERSONHPP
class person {
protected: // Make these variables available to the subclasses
char name[25];
int salary;
public:
virtual void display(void);
};
#endif